home *** CD-ROM | disk | FTP | other *** search
- /*
- Little Smalltalk, version 3
- Written by Tim Budd, Oregon State University, July 1988
-
- Symantec Think Class Library interface code ©Julian Barkway, April 1994
-
- CLStDoc.h
- ---------
- This class provides basic document related functions.
- */
-
- #pragma once
- #include <CDocument.h>
- #include <CApplication.h>
-
- class CLStDoc : CDocument {
- public:
- long fileType;
-
- void ILStDoc (CApplication *aSupervisor, Boolean printable);
-
- CWindow *BuildWindow (char *title, Point *wPosition, Point *wSize, Boolean noClose);
-
- void SetFileType (long fType);
- CWindow *GetWindow (void);
- void AskFileName (char *promptString, Boolean save,
- StandardFileReply *sfReply,
- SFTypeList fTypes, short numFTypes);
- Boolean ConfirmClose (Boolean quitting);
- };